From 6382623783831301f85010bd515aa3159c6d1354 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Wed, 9 Jun 1993 12:39:16 +0000 Subject: [PATCH] * process.c (sigchld_handler): Add cast, to avoid warnings on Linux. (Fopen_network_stream): Cast the second argument to connect, to avoid warnings on any system that provides prototypes for connect. --- src/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/process.c b/src/process.c index d661aa92425..a834cc8a355 100644 --- a/src/process.c +++ b/src/process.c @@ -1478,7 +1478,7 @@ Fourth arg SERVICE is name of the service desired, or an integer\n\ report_file_error ("error creating socket", Fcons (name, Qnil)); loop: - if (connect (s, &address, sizeof address) == -1) + if (connect (s, (struct sockaddr *) &address, sizeof address) == -1) { int xerrno = errno; if (errno == EINTR) -- 2.30.2